const crypto/tls.maxPlaintext
8 uses
crypto/tls (current package)
common.go#L65: maxPlaintext = 16384 // maximum plaintext payload length
conn.go#L412: if len(plaintext) > maxPlaintext+1 {
conn.go#L690: if len(data) > maxPlaintext {
conn.go#L903: return maxPlaintext
conn.go#L907: return maxPlaintext
conn.go#L938: return maxPlaintext // avoid overflow in multiply below
conn.go#L942: if n > maxPlaintext {
conn.go#L943: n = maxPlaintext
![]() |
The pages are generated with Golds v0.8.4. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @zigo_101 (reachable from the left QR code) to get the latest news of Golds. |